home *** CD-ROM | disk | FTP | other *** search
/ CD Actual: Windows XP / CDWindowsXP.iso / Datos / Visio / flash / visio10_ui.swf / scripts / DefineButton2_281 / BUTTONCONDACTION on(keyPress Tab).as
Encoding:
Text File  |  2001-03-22  |  248 b   |  13 lines

  1. on(keyPress "<Tab>"){
  2.    trace("Tab Key Pressed");
  3.    if(tabCount == 0)
  4.    {
  5.       Selection.setFocus(_root.VisitVisio);
  6.    }
  7.    else if(tabCount == 1)
  8.    {
  9.       Selection.setFocus(_root.Exit);
  10.    }
  11.    tabCount = (tabCount + 1) % 2;
  12. }
  13.